5 like 0 dislike
419 views

You have received an encrypted message from Julius Caesar-- the message is ebiil.  You are asked to decipher the message in order to understand what Caesar trying to say to you.

Hint

Luckily, Caesar has given you a hint, he says: 'I, myself, encoded the message by shifting every word backwards by 3.' 

Solution

Write a program that receives 5 characters 'ebiil'. Then decode those characters into 5 new characters.

Example

#include <stdio.h>

int main(int argc, char *argv[]) {


	char a;
    	char b;
	 	
	scanf("%c%c", &a, &b);
	
	//decode the message how??
	
	printf("%c%c", a,b);
	
	return 0;
}

Input

ebiil

 

 

 

 

 

 

 

 

 

 

Output

hello

** REMEMBER ** 
This is an online-compiler, don't put anything except the codes. If you want to make a comment, please use // or /* */

[Normal] Coding (C) - asked in Questions Bank by (5.9k points)
ID: 28126 - Available when: Unlimited - Due to: Unlimited
| 419 views

1 Answer

0 like 0 dislike
Hidden content!
#include * *** * ***
int main(int argc, char *argv[]) {


** ** * * * * char a;
* * * ** *** * * * * ***** * b;
** *** * *** * * * ** * c;
** *** **** ***** *** d;
** ** *** * * ******** e;
* ** * * ** * * * ***
* ****** * * * ** * ****** ** * * * *** ** * * *** *** ** * * ** * *
* ** * * * *
* * *** ** the message how??
* **** * ***
** ** * * ** ** * * * ** *** * * *** * *** **
*** ** * *
* * ** *** return 0;
}
answered by (221 points)
0 0
Case 0: Correct output
Case 1: Wrong output
Welcome to Peer-Interaction Programming Learning System (PIPLS) LTLab, National DongHwa University
English 中文 Tiếng Việt
IP:172.69.59.111
©2016-2025

No related questions found

12,783 questions
183,442 answers
172,219 comments
4,824 users