#include <stdio.h> int main() { printf(" O \n"); printf("<H>\n"); printf("I I\n"); return 0; }
#include <stdio.h> int main() { printf(" O \n"); printf("<H>\n"); printf("I I\n"); printf(" O \n"); printf("<H>\n"); printf("I I\n"); return 0; }
#include <stdio.h> int main() { printf(" O O\n"); printf("<H> <H>\n"); printf("I I I I\n"); return 0; }
#include <stdio.h> int main() { int n, sum; scanf("%d",&n); sum = (n+1)*n/2; printf("sum=%d",sum); return 0; }
写法三和写法四不可以实现题目要求,原因是n/2或(n+1)/2向下取整。
#include <stdio.h> int main() { int a, b,t; a=3; b=4; printf("a=%d,b=%d\n",a,b); t=a; a=b; b=t; printf("a=%d,b=%d\n",a,b); return 0; }
实现了数值的交换。
#include <stdio.h> int main() { int x,t,m; x=123; printf("x=%d\n",x); t=0; m =x%10; t =t *10+m; x= x/10; m =x%10; t =t *10+m; x= x/10; m =x%10; t =t *10+m; x= x/10; printf("t=%d\n",t); return 0; }
当x的值为456,t=654。实现的功能是将一个百位十位个位为abc的数,变成一个为cba的数
#include <stdio.h> int main() { float a,b,c; scanf("%f%f%f",&a,&b,&c); if(a+b>c && a+c>b && b+c>a) printf("能构成三角形。"); else printf("不能构成三角形。"); return 0; }
#include <stdio.h> int main() { int year; year = (int) (1e9/(365*24*60*60)+0.5); printf("10亿秒约有%d年",year); return 0; }
#include <stdio.h> #include <stdlib.h> #include <time.h> int main() { int n; srand((unsigned)time(NULL)); n = rand() % 41+60; printf("n=%d\n",n); return 0; }
若不加time标准库,不用srand函数的话,形成的随机数是一样的,也就是伪随机数,加上函数后,才能使随机数足够随机。
#include <stdio.h> int main() { char ans1, ans2; printf("每次课前认真预习,课后及时复习了没有?(输入y或Y表示有,输入n或N表示没有。):"); ans1 = getchar(); getchar(); printf("\n动手敲代码了没有?(输入y或Y表示敲了,输入n或N表示没敲。):"); ans2 = getchar(); if(ans1=='y'&&ans2=='y'||ans1=='y'&&ans2=='Y'||ans1=='Y'&&ans2=='y'||ans1=='Y'&&ans2=='Y') printf("罗马不是一天建成的,继续保持哦。\n"); else printf("罗马不是一天毁灭的,我们来建设吧。"); return 0; }
标签:10,main,return,int,实验,printf,include From: https://www.cnblogs.com/xjx123/p/17172788.html