期刊问答网 论文发表 期刊发表 期刊问答
  • 回答数

    3

  • 浏览数

    121

手机用户
首页 > 期刊问答网 > 期刊问答 > 算法与程序设计论文题目

3个回答 默认排序1
  • 默认排序
  • 按时间排序

Emoko

已采纳
算法与程序设计 可以的话,具体说与我

算法与程序设计论文题目

118 评论(9)

张永旺

将“China”译成密码,密码的规律是:用原来的字母后面第4个字母代替原 来的字母。例如,字母“A”后面第4个字母是“E” ,用“E”代替“A” 。因 此, “China”应译为“Glmre” 。请编写一程序,用赋初值的方法使c1,c2, c3,c4,c5 5个变量的值分别为’C’, ’h’, ’i’, ’n’, ’a’,经过运算,使c1,c2,c3, c4,c5分别变为’G’, ’l’, ’m’, ’r’, ’e’,并输出。 #include using namespace std; int main() { char c1='C',c2='h',c3='i',c4='n',c5='a'; c1+=4; c2+=4; c3+=4; c4+=4; c5+=4; cout<
146 评论(14)

iamimp

仅供参考: Study on Teaching Method of Algorithm and program design Abstract: Algorithm and program design is one and probably the most important of the elective modules for IT courses offered in a senior secondary Teaching of algorithm and program design often bores the students which makes it difficult for both the teacher and the It is therefore of great important to choose the most appropriate teaching method that can foster and boost student interests and also guide them through the entire The teaching method discussed in this paper is closely linked to the teaching content of algorithm andprogram design in a high school’s IT Key words: algorithm, program design,teaching methods, learning interest
182 评论(14)

相关问答