求一个C++程序代码,谢谢!(C++初学者的水平)

求一个C++程序代码,谢谢!(C++初学者的水平)学号是十三位数字,输入的英文中空格算作字符,明天晚上七点前要交,急求,谢谢!(C++第一节课老师布置的作业,因此最好不要运用超纲的知识)

#include <iostream>
using namespace std;
int main(){
char *a1;//用于英文文本
char a2;//目标英文字符
int a3=123%26;//此处的123代表学号数字
int a4=0;
int a5=0;
int a6=0;
int a0=0;
//get the text
//部分1/*
cout<<("Input a string!")<<endl;
cin>>a1;
*/
//部分2 /*
a1="ggdg kvffh .ihffjj jdcggg.gyffc gygf gfdg.";
cout<<a1<<endl;
*/
//选定并输出该字符
a2=a1[a3];
cout<<a2<<endl;
//统计三种字符
while(a1[a0]){
if(a1[a0]==a2)a4++;//选定字符
else if (a1[a0]==' ')a5++;//空格
else if(a1[a0]=='.')a6++;//句点
a0++;}
//输出结果
cout<<"Number of "<<a2<<": "<<a4<<endl;
cout<<"Number of space : "<<a5<<endl;
cout<<"Number of '.' : "<<a6<<endl;
return 0;
}
//部分1后面为运行后的键盘录取;
//部分2后面为编译前即设定英文文章内容。
//用到哪种,就删除括起它后面两行的/*和*/
//二选其一,切勿多删!
温馨提示:内容为网友见解,仅供参考
无其他回答

C++程序 求代码
if(i<2&&j>1) \/\/判断运算符优先级 {switch(j){case 2:a=1*1;break;case 3: a=1%1;break;case 4: a=1\/1;break;default: break;} switch(i){case 0: b=1+a;break;case 1: b=1-a;break;default: break;} } else {switch(i){ case 0: a=1+1;break;case 1: a=1-1...

求以下c++代码(大一新生,课没上,实验要做)
n = ceil(log(m \/ (m - v * r)) \/ log(1 + r)); printf("%d个月可还清贷款\\n", n); return 0;} 任务5:大小写转换 include <stdio.h>int main() { char c; printf("输入一个半角字符:"); scanf("%c", &c); if (c >= 'A' && c <= 'Z') ...

C++编程题,求程序代码,非常感谢!!
include <iostream>using namespace std;void main(){ int m,n; int **p; float avg = 0.0; cout<<"请输入行数和列数."<<endl; cin>>m>>n; p=new int*[m];\/\/动态申请二维数组 for (int i=0;i<m;i++) { p[i] = new int[n]; } cout...

求一个C++程序代码?要求输入阿拉伯数字输出中文数字高手进
using namespace std;void main(){ typedef char string[29];string str="零壹贰叁肆伍陆柒捌玖拾百千万";\/\/,"壹","贰","叁","肆","伍","陆","柒","捌","玖","拾","百","千","万";int i_tmp=0,i_tmp1=0,i_tmp2=0,i_tmp3=0,i_tmp4=0,i_tmp5=0;cout<<"inpu...

C语言(最好C++)编一下这个程序
里面的一些细节没有做,比如控制输入人数限制等 要是你觉得需要的话自己再添加一下就行 具体的代码如下:include <stdio.h> include <stdlib.h> include <string.h> include <iostream.h> struct Info { char name[10];int weight;char sex;struct Info * Next;};struct Info *temp, *rMale...

一个c++简单程序的源代码
include <iostream.h> int main(){ int a;cin>>a;cout<

求这个程序的C++代码
\/\/代码如下:include<iostream> include<cstdlib> include<ctime> include<cstring> using namespace std;\/\/排序函数 void bubsort(double * lst, int l) { int i,j;double k;for(j=l-1; j>0; j--)for(i=0; i<j; i++) { if(lst[i]>lst[i+1]) { k=lst[i];lst[i]=lst[...

求一C++小游戏源代码 简单点的?!!谢谢
void GamePlay(); \/*游戏控制函数 主要程序*\/ void PrScore(void); \/*分数输出函数*\/ DELAY(char ch)\/*调节游戏速度*\/ { if(ch=='3'){ delay(gamespeed); \/*delay是延迟函数*\/ delay(gamespeed);} else if(ch=='2'){ delay(gamespeed);} } Menu()\/*游戏开始菜单*\/ { char ch;...

用C++编写简单的计算器? 要求开头用 #include<stdio.h> #include <std...
&a);printf("输出结果为:%d=",a);d2n(a,16);printf("\\n");break;case 10:printf("请输入一个数:");scanf("%d",&a);printf("输出结果为:%d\\n",abs(a));break;case 11:printf("拜拜!谢谢使用!");break;} getchar();getchar();system("cls");}while(n<11);return 0;} ...

c++程序看不懂,求大神!
include <iostream> using namespace std; int main(){ char str[50],*p; int i=0,j=0,k,m,e10,temp,s,a[10],*pa; cout<<"输入字符"<<endl; gets(str); p=&str[0]; pa=&a[0]; s=0; while(*(p+i)!='\\0') \/\/逐个字符查看输入的字符串,'...

相似回答