求一段简短的c++代码 简单c语言代码表白
写一个简短的C语言代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdio.h>
intmain()
{
答doublea,b,c;
scanf("%lf",&a);
scanf("%lf",&b);
c=a+b;
printf("first number:%.2lf",a);
printf("\nsecond number%.2lf",b);
printf("\n\t%.2lf",a);
printf("\n+\t%.2lf",b);
printf("\n-------------\n");
printf(" %.2lf\n",c);
return0;
}
求一段简单的C语言代码
#include
using namespace std;
#define countof(x) sizeof(x)/sizeof(x[0])
int main()
{
char szText[256];
int nBytes = 0;//字节数
int nSpace = 0;//空格数
int nRow = 0;//行数
int nAbc = 0;//大小写字母数
cout<<"请输入要统计的字符串,以#号结束"< cin.get( szText, countof(szText), '#' ); for ( int i = 0; i < strlen(szText); i++ ) { if ( (szText[i] >= 'a' && szText[i] <= 'z') || (szText[i] >= 'A' && szText[i] <= 'Z') ) { nAbc++; } else if ( szText[i] == ' ' ) { nSpace++; } else if ( szText[i] == '\n' ) { nRow++; } nBytes++; } cout<<"字节数:"< cout<<"空格数:"< cout<<"行数:"< cout<<"大小写字母数:"< return 0; } #include<stdio.h> #include<stdlib.h> #include<string.h> void main() { int a,b,d,f; char c[4],e[5]="EXIT"; while(true) {printf("BEGIN(开始)EXIT(退出):"); scanf("%s",c); while(strcmp(c,e)!=0) {printf("请输入a和b:"); scanf("%d %d",&a,&b); d=a+b; printf("%d\n",d); printf("是否继续[1.是;0.否]:"); scanf("%d",&f); if(f==0) break; else continue; } if(strcmp(c,e)==0) printf("结束\n"); printf("按回车返回开头"); fflush(stdin); getchar(); system("cls"); } } 你题意不是太明确,我随意编了一个不知道是不是你想要的。 写好了,你看看吧,有要求再提 #include<stdio.h> #include<conio.h> int main(){ char input[50]; printf("请问 1+1="); for(;;){ gets(input); if(strcmp(input,"2")==0) {puts("正确");break;} printf("重新输入 1+1="); } getch(); }求 一个超简单的C语言程序代码
求一简单C程序代码