陶醉眼睛

文章
6
资源
0
加入时间
3年0月20天

PAT真题1001PAT 1005:1008101110151019 1027

真题1001:自己答案:#include<stdio.h>char s[100];int main(){    int a,b,t=1,i=0,k=0,sum;            scanf("%d%d",&a,&b);        sum=a+b;        if(sum<0);    {        t=-1; ...

ASP.NET Core Web API 控制器

代码using Microsoft.AspNetCore.Mvc;namespace ContosoPizza.Controllers;[ApiController][Route("[controller]")]public class WeatherForecastController : ControllerBase{ private static readonly string[] Summaries = new[] { "Freez

for循环嵌套编程练习

1 编程要求:求出用50元,20元和10元换算100元有几种方式?思路:用穷举法,将所有可能的情况都列举出来,用for循环可以实现穷举分析:100元单用50换算,最多需要两张,用20元最多换算5张,用10元最多换算10张#include<stdio.h>int main(void){ int w,e,s; // w代表wushi,e代表ershi,s代表shi for...